body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    margin: 0;
    padding: 0;
}


.header{
    background-color: white;
    color: #2a5298;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul{
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 10px;
}
.nav{
     position: sticky;
    top: 0;
}


ul li a{
    text-decoration: none;
    color: #2a5298;
    font-weight: bold;
     position: sticky;
    top: 0;
}

ul li a:hover{
    background-color: #ff4b91;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
}


.main{
    background: linear-gradient(to right, #ff512f, #dd2476);
    color: white;
    padding: 60px;
   
}

.main button{
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.main img{
    height: 250px;
    border-radius: 50%;
    border: 8px solid white;
    opacity: 1;
}


.arrial{
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 20px;
}


.shoe1{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px;
}

.shoes{
    background-color: white;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.shoes:hover{
    transform: translateY(-5px);
     
}
.shoes img:hover{
    opacity: 1;
}
.shoes img{
    width: 100%;
    height: 160px;
    border-radius: 8px;
    opacity: 0.5;
      
}

.old{
    text-decoration: line-through;
    color: red;
}

button{
    background-color: #2a5298;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

button:hover{
    background-color: #ff4b91;
}


footer{
    background-color: black;
    color: white;
    text-align: center;
    padding: 15px;
}
.contact{
    background-color: white;
    width: 30%;
  
    text-align: center;
    border-radius: 10px;
    
}
.contact1{
 justify-content: center;
 margin-left: 500px;
  
}
.contact1:hover{
    transform: translateY(-10px);
}
.contact textarea{
    width: 70%;
    height: 130px;
        border-radius: 5px;
}
.contact input{
    width: 70%;
        border-radius: 5px;
}
#about{
    margin-bottom:10px;
     background-color: white;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
#contact{
    margin-bottom:10px;
     background-color: white;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
#sales{
    margin-bottom:10px;
     background-color: white;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
#new{
    margin-bottom:10px;
     background-color: white;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.details{
    display: flex;
    gap: 20px;
    justify-content: center;
}
.details:hover{
    transform: translateY(-10px);
}
.section{
     background: linear-gradient(to right, #ff512f, #26e630);
    color: white;
    padding: 200px 60px;
}



.details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.details section {
    background: white;
    width: 260px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


@media (max-width: 1024px) {
    .shoe1 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    ul {
        flex-direction: column;
        gap: 10px;
    }

    .shoe1 {
        flex-direction: column;
        align-items: center;
    }

    .details {
        flex-direction: column;
        align-items: center;
    }

    .contact {
        width: 90%;
    }


}